home *** CD-ROM | disk | FTP | other *** search
Makefile | 1994-08-02 | 584 b | 29 lines |
- #!/usr/sbin/pmake -v
-
- include $(ROOT)/usr/include/make/commondefs
-
- # alternate include directory
- LCINCS =
- # debugging option
- LCOPTS = -g
- #OPTIMIZER= -O2
- LLDLIBS=$(ROOT)/usr/lib/libw.a $(ROOT)/usr/lib/libgen.a
-
- # override the prototypes macro in commondefs: if you want
- # prototyping turned on, comment out the next line.
- #PROTOTYPES=
-
- CFILES = xpg3_wchar.c mnls_wchar.c
-
- TARGETS = xpg3_wchar mnls_wchar
-
- default all: $(TARGETS)
-
- include $(COMMONRULES)
-
- xpg3_wchar: xpg3_wchar.o
- $(CCF) xpg3_wchar.o $(LDFLAGS) -o $@
-
- mnls_wchar: mnls_wchar.o
- $(CCF) mnls_wchar.o $(LDFLAGS) -o $@
-